DataSource for Entity Framework in WPF
C1.Data.Entities Namespace / EntityClientScope Class / GetItems Method / GetItems<T>() Method
The type of entities to load.

In This Topic
    GetItems<T>() Method
    In This Topic
    Gets a client view of entities of a given type.
    Syntax
    'Declaration
     
    Public Overloads Function GetItems(Of T)() As ClientView(Of T)
    public ClientView<T> GetItems<T>()

    Type Parameters

    T
    The type of entities to load.

    Return Value

    A client view of entities of the specified type.
    Remarks
    Entities are loaded using the entity set of the matching entity type from the default entity container.
    See Also